1. MySQL Query to obtain emissions output by pollutant in tons/day by roadtype:

   For 2014, 2 county: SELECT movesrunID, yearid, countyid, roadtypeid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2014_2co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid, roadtypeid

   For 2014, 13 county: SELECT movesrunID, yearid, countyid, roadtypeid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2014_13co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid, roadtypeid

   For 2030, 2 county: SELECT movesrunID, yearid, countyid, roadtypeid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2030_2co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid, roadtypeid
   
   For 2030, 13 county: SELECT movesrunID, yearid, countyid, roadtypeid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2030_13co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid, roadtypeid


2. MySQL Query to obtain emissions output by pollutant in tons/day total:	

   For 2014, 2 county: SELECT movesrunID, yearid, countyid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2014_2co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid

   For 2014, 13 county: SELECT movesrunID, yearid, countyid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2014_13co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid

   For 2030, 2 county: SELECT movesrunID, yearid, countyid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2030_2co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid
   
   For 2030, 13 county: SELECT movesrunID, yearid, countyid, pollutantid, sum(emissionQuant)/907184.74 FROM o3mp_2030_13co_o3_out.movesoutput m where pollutantid in(3,87) group by MOVESRUnid, pollutantid


 